Menu Top
Classwise Concept with Examples
6th 7th 8th 9th 10th 11th 12th

Class 11th Chapters
1. Sets 2. Relations and Functions 3. Trigonometric Functions
4. Principle of Mathematical Induction 5. Complex Numbers and Quadratic Equations 6. Linear Inequalities
7. Permutations and Combinations 8. Binomial Theorem 9. Sequences and Series
10. Straight Lines 11. Conic Sections 12. Introduction to Three Dimensional Geometry
13. Limits and Derivatives 14. Mathematical Reasoning 15. Statistics
16. Probability

Content On This Page
Fundamental Principle of Counting Factorial Notation Permutations
Permutations when all Objects are Different Permutations when not all Objects are Distinct Combinations
Combinations when all Objects are Different Important Results on Combinations Division into Groups
Distribution of n Identical Objects into Groups


Chapter 7 Permutations and Combinations (Concepts)

Welcome to the fascinating world of Combinatorics, the branch of mathematics focused on counting! This chapter introduces fundamental principles and sophisticated techniques for determining the number of ways different arrangements or selections can be made from a given set of objects, without having to tediously list out every single possibility. Often, we encounter questions like "In how many ways can a committee be formed?" or "How many different license plates are possible?". This chapter, focusing on Permutations and Combinations, provides the systematic tools to answer such questions precisely, forming the bedrock for probability theory, computer science algorithms, statistical analysis, and various other fields.

We begin with the absolute cornerstone: the Fundamental Principle of Counting. This principle has two parts:

Understanding when to multiply (sequential/AND tasks) versus when to add (alternative/OR tasks) is fundamental. To facilitate calculations involving these principles, we introduce the indispensable factorial notation. For a non-negative integer $n$, the factorial of $n$, denoted by $\mathbf{n!}$, is the product of all positive integers less than or equal to $n$. That is, $n! = n \times (n-1) \times (n-2) \times \dots \times 3 \times 2 \times 1$. By definition, $\mathbf{0! = 1}$. Factorials grow very rapidly and are central to formulas for arrangements and selections.

Next, we explore Permutations, which deal with arrangements of objects where the order matters. A permutation is an ordered sequence of items. The number of distinct permutations of $n$ distinct objects taken $r$ at a time (where $r \le n$) is denoted by $P(n, r)$ or, more commonly, $\mathbf{^nP_r}$. The formula is derived using the multiplication principle: $$ \mathbf{^n P_r = \frac{n!}{(n - r)!}} $$ For example, the number of ways to arrange 3 letters from the set {A, B, C, D} ($n=4, r=3$) is $^4P_3 = \frac{4!}{(4-3)!} = \frac{4!}{1!} = 24$. We might also consider permutations where some objects are identical (e.g., arranging letters in MISSISSIPPI) or arrangements in a circle (circular permutations), which have slightly different formulas.

Contrasting with permutations are Combinations, which deal with selections of objects where the order does NOT matter. A combination is simply a subset of items chosen from a larger set. The number of distinct combinations of $n$ distinct objects taken $r$ at a time ($r \le n$) is denoted by $C(n, r)$, $\mathbf{^nC_r}$, or often $\mathbf{\binom{n}{r}}$ (read as "n choose r"). Since order doesn't matter, the number of combinations is less than the number of permutations. The formula is: $$ \mathbf{^n C_r = \binom{n}{r} = \frac{n!}{r!(n - r)!}} $$ Notice that $^nC_r = \frac{^nP_r}{r!}$. For example, the number of ways to choose a committee of 3 people from a group of 4 is $^4C_3 = \frac{4!}{3!(4-3)!} = \frac{4!}{3!1!} = 4$. Key properties often derived include the symmetry $\mathbf{^nC_r = ^nC_{n-r}}$ and Pascal's rule $\mathbf{^nC_r + ^nC_{r-1} = ^{n+1}C_r}$.

A critical skill developed throughout this chapter is discerning whether a given problem requires permutations (arrangement, sequence, order matters – think positions, ranks, specific roles) or combinations (selection, group, subset, order doesn't matter – think teams, committees, hands of cards). Applying the fundamental principles and the correct formula ($^nP_r$ or $^nC_r$) allows us to solve a wide array of counting problems efficiently, such as those involving forming numbers with specific properties, arranging letters in words, selecting teams or committees with certain compositions, or dealing with arrangements in geometric contexts.



Fundamental Principle of Counting

Permutations and Combinations are mathematical concepts that deal with counting possible arrangements and selections of objects from a set. The foundation of these topics lies in the basic rules of counting, collectively known as the Fundamental Principle of Counting (FPC).

The FPC helps us determine the total number of outcomes for a complex event by breaking it down into simpler events or decisions. It consists of two main principles: the Multiplication Principle and the Addition Principle.


Multiplication Principle

The Multiplication Principle applies when a task is performed in a sequence of stages or steps. It is used to find the total number of outcomes when events happen one after another (using the keyword "AND").

Principle: If a first task can be performed in $n_1$ ways, and a second task can be performed in $n_2$ ways, then the total number of ways to perform the first task AND the second task is the product:

Total Ways = $n_1 \times n_2$

This extends to any number of tasks performed in sequence.

Examples of the Multiplication Principle

Example A: Creating an Outfit

A person has 3 different shirts and 4 different pairs of pants. How many different outfits can they create?

To create an outfit, the person must choose a shirt AND choose a pair of pants.

By the Multiplication Principle, the total number of outfits is:

Total outfits = $3 \times 4 = 12$

A tree diagram showing 3 initial branches for shirts, and from each of those, 4 smaller branches for pants, resulting in 12 final outcomes.

Example B: Forming a Code (Without Repetition)

How many 4-letter codes can be formed using the first 10 letters of the alphabet if no letter can be repeated?

We have four positions to fill:

Total codes = $10 \times 9 \times 8 \times 7 = 5040$.

Example C: Forming a Number (With Repetition)

How many 3-digit numbers can be formed using the digits 0, 1, 2, 3, 4, 5 if repetition is allowed?

We have three positions to fill: Hundreds, Tens, and Units.

Total 3-digit numbers = $5 \times 6 \times 6 = 180$.


Addition Principle

The Addition Principle applies when we have a choice between two or more mutually exclusive options. It is used to find the total number of outcomes when we can do one task OR another (using the keyword "OR").

Principle: If a task can be performed in $n_1$ ways, and another, mutually exclusive task can be performed in $n_2$ ways, then the total number of ways to perform either the first task OR the second task is the sum:

Total Ways = $n_1 + n_2$

Mutually exclusive means the two tasks cannot be performed at the same time.

Examples of the Addition Principle

Example D: Choosing a Class Representative

A class has 15 boys and 12 girls. In how many ways can one student be selected as a representative?

The representative can be a boy OR a girl. These two choices are mutually exclusive.

By the Addition Principle, the total number of ways to choose a representative is:

Total ways = $15 + 12 = 27$

Example E: Choosing a Mode of Transport

A person can travel from city A to city B by one of 3 buses or by one of 2 trains. In how many ways can they travel from A to B?

The person can travel by bus OR by train. The choices are mutually exclusive.

Total ways = $3 + 2 = 5$.


Combining the Principles

Many counting problems require using both principles together.

Example F: Choosing a President and Vice-President

From a group of 6 boys and 8 girls, a President and a Vice-President are to be selected such that one is a boy and the other is a girl.

This problem has two mutually exclusive cases (Addition Principle), and each case involves a sequence of choices (Multiplication Principle).

The final selection can be from Case 1 OR Case 2. Since these cases are mutually exclusive, we add their outcomes:

Total ways = $48 + 48 = 96$



Factorial Notation

In the realm of counting arrangements and selections, we frequently encounter the product of a sequence of decreasing positive integers. To simplify the representation of such products, we use factorial notation. This notation is fundamental to the formulas for permutations and combinations.


Definition of Factorial

For any positive integer $n$, the factorial of $n$, denoted by $n!$ (read as "n factorial"), is defined as the product of all positive integers from 1 up to $n$.

$n! = n \times (n-1) \times (n-2) \times \dots \times 3 \times 2 \times 1$

... (1)

Let's calculate the factorials for the first few positive integers:

$1! = 1$

$2! = 2 \times 1 = 2$

$3! = 3 \times 2 \times 1 = 6$

$4! = 4 \times 3 \times 2 \times 1 = 24$

$5! = 5 \times 4 \times 3 \times 2 \times 1 = 120$


Recursive Relation

From the definition of $n!$, we can see a relationship between the factorial of $n$ and the factorial of $n-1$.

$n! = n \times \underbrace{[(n-1) \times (n-2) \times \dots \times 1]}_{(n-1)!}$

This gives us the very useful recursive relation:

$n! = n \times (n-1)!$

... (2)

This relation allows us to break down larger factorials, which is key to simplifying expressions. For example, $10! = 10 \times 9!$.


Factorial of Zero

The definition of factorial applies to positive integers. To make the recursive relation $n! = n \times (n-1)!$ consistent for the case when $n=1$, we need to define a value for $0!$.

Let's use the recursive formula with $n=1$:

$1! = 1 \times (1-1)! = 1 \times 0!$

Since we know that $1! = 1$, the equation becomes:

$1 = 1 \times 0!$

For this to be true, $0!$ must be equal to 1. Therefore, by definition:

$0! = 1$

This definition is crucial for the formulas of permutations and combinations to work correctly in all cases.


Usage and Properties

$n!$ represents the number of ways to arrange $n$ distinct objects in a sequence (a permutation of $n$ objects).

Factorial notation is defined only for non-negative integers ($0, 1, 2, 3, \dots$). It is not defined for negative integers or fractions.


Example 1. Evaluate $\frac{9!}{6!}$.

Answer:

Given:

The expression $\frac{9!}{6!}$.

To Evaluate:

Calculate the value of the expression.

Solution:

We use the recursive property to expand the larger factorial ($9!$) until we reach the factorial in the denominator ($6!$).

$9! = 9 \times 8 \times 7 \times (6 \times 5 \times \dots \times 1) = 9 \times 8 \times 7 \times 6!$.

Substitute this into the expression:

$\frac{9!}{6!} = \frac{9 \times 8 \times 7 \times 6!}{6!}$

Cancel the common factorial term $6!$ from the numerator and the denominator:

$= \frac{9 \times 8 \times 7 \times \cancel{6!}}{\cancel{6!}} = 9 \times 8 \times 7$

Perform the multiplication:

$= 72 \times 7 = 504$

The final answer is 504.


Example 2. Evaluate $\frac{15!}{(13!)(2!)}$.

Answer:

Given:

The expression $\frac{15!}{(13!)(2!)}$.

To Evaluate:

Calculate the value of the expression.

Solution:

Expand the largest factorial ($15!$) until it contains the next largest factorial ($13!$). Also, expand $2!$.

$\frac{15!}{(13!)(2!)} = \frac{15 \times 14 \times 13!}{13! \times (2 \times 1)}$

Cancel the common factorial term $13!$:

$ = \frac{15 \times 14 \times \cancel{13!}}{\cancel{13!} \times 2} = \frac{15 \times 14}{2}$

Simplify the expression:

$ = 15 \times \frac{14}{2} = 15 \times 7$

Perform the multiplication:

$ = 105$

The final answer is 105.



Permutations

In combinatorics, we often need to count the number of ways to arrange objects. Permutations are arrangements where the order of the objects matters. Each unique sequence or ordering of a set of objects is called a permutation.


Definition of a Permutation

A permutation is an arrangement of a set of objects in a definite, specific order. The key idea is that changing the order creates a new, distinct permutation.

For example, consider three distinct letters: A, B, and C. If we arrange all of them, the possible permutations are:

ABC, ACB, BAC, BCA, CAB, CBA

There are 6 distinct arrangements, so there are 6 permutations of these three letters.

Often, we are interested in arranging only a smaller group of items taken from a larger set. A permutation of $n$ distinct objects taken $r$ at a time is an ordered arrangement of $r$ objects chosen from the set of $n$.

Example: Permutations vs. Combinations

Let's again use the letters A, B, and C and see the difference between permutations and combinations when we select 2 letters at a time ($n=3, r=2$).

Permutations (Order Matters):

We select 2 letters and arrange them. The possible ordered pairs are:

AB, BA, AC, CA, BC, CB

Here, AB is different from BA because the order of the letters has changed. There are 6 permutations.

Combinations (Order Does NOT Matter):

We select a group of 2 letters. The possible groups are:

{A, B}, {A, C}, {B, C}

Here, the group {A, B} is the same as the group {B, A}. We are only concerned with which letters are chosen, not their arrangement. There are 3 combinations.

A diagram illustrating the difference between permutations and combinations. For the letters A and B, it shows one combination {A,B} but two permutations AB and BA.

Notation for Permutations

The number of permutations of $n$ distinct objects taken $r$ at a time is represented by the following standard notations:

All these symbols mean the same thing and are read as "the number of permutations of n objects taken r at a time". The conditions for this notation are:

If we try to arrange more objects than we have (i.e., if $r > n$), it's impossible. In this case, $_nP_r = 0$.

In the next section, we will derive the formula for calculating $_nP_r$ using the Fundamental Principle of Counting.



Permutations when all Objects are Different

We now use the Fundamental Principle of Counting and factorial notation to derive a formula for calculating the number of permutations when we are arranging objects from a set where all the objects are distinct. Specifically, we want to find the number of distinct ordered arrangements that can be formed by selecting $r$ objects from a set containing $n$ distinct objects.


Derivation of the Formula for $_nP_r$

Imagine we have a set of $n$ distinct objects and we want to arrange $r$ of them in a sequence. This is equivalent to filling $r$ empty slots or positions using the $n$ available objects, without repetition.

A diagram showing r empty slots to be filled. The first slot has n choices, the second has n-1 choices, and so on, up to the r-th slot which has n-r+1 choices.

We can determine the number of options for each position sequentially:

By the Fundamental Principle of Multiplication, the total number of ways to fill all $r$ positions is the product of the number of choices at each step:

$_nP_r = n \times (n-1) \times (n-2) \times \dots \times (n - r + 1)$

... (1)

To express this formula more compactly using factorials, we multiply and divide by $(n-r)!$:

$_nP_r = \frac{[n \times (n-1) \times \dots \times (n - r + 1)] \times [(n-r) \times \dots \times 1]}{(n-r) \times \dots \times 1}$

The numerator is now the product of all integers from $n$ down to 1, which is $n!$. The denominator is $(n-r)!$. This gives us the standard formula for permutations:

$_nP_r = \frac{n!}{(n-r)!}$

... (2)

This formula is valid for $0 \le r \le n$.


Arranging All $n$ Objects

A special and very common case is when we arrange all $n$ distinct objects. This means we are taking $n$ objects at a time, so $r=n$. Substituting $r=n$ into the formula:

$_nP_n = \frac{n!}{(n-n)!} = \frac{n!}{0!}$

Since we define $0! = 1$, the result is:

$_nP_n = n!$

... (3)

This means the number of ways to arrange $n$ distinct items in a row is simply $n!$.


Example 1. How many 5-digit numbers can be formed using the digits 1, 2, 3, 4, 5, 6, 7, 8, 9 if no digit is repeated?

Answer:

Given:

  • A set of 9 distinct digits: $\{1, 2, ..., 9\}$. So, $n=9$.
  • We need to form 5-digit numbers, so we are selecting and arranging 5 digits. Thus, $r=5$.
  • No repetition is allowed, and the order of digits matters.

To Find:

The number of possible 5-digit numbers.

Solution:

This is a permutation problem of arranging 5 items from a set of 9. We use the formula $_nP_r = \frac{n!}{(n-r)!}$.

Here, $n=9$ and $r=5$.

Number of 5-digit numbers = $_9P_5 = \frac{9!}{(9-5)!} = \frac{9!}{4!}$

Expand $9!$ until we can cancel $4!$:

$= \frac{9 \times 8 \times 7 \times 6 \times 5 \times \cancel{4!}}{\cancel{4!}}$

$ = 9 \times 8 \times 7 \times 6 \times 5$

Perform the multiplication:

$ = 15120$

The final answer is 15,120.


Example 2. In how many ways can the letters of the word 'DELHI' be arranged?

Answer:

Given:

  • The word 'DELHI'.
  • There are 5 distinct letters: D, E, L, H, I. So, $n=5$.
  • We need to arrange all the letters, so we are taking all 5 letters at a time. Thus, $r=5$.

To Find:

The number of distinct arrangements.

Solution:

This is a problem of finding the number of permutations of 5 distinct objects taken all at a time. We use the formula $_nP_n = n!$.

Number of arrangements = $_5P_5 = 5!$

Calculate the factorial:

$ = 5 \times 4 \times 3 \times 2 \times 1 = 120$

The final answer is 120.



Permutations when not all Objects are Distinct

In the previous section, we discussed permutations of distinct objects. However, we often encounter problems where we need to arrange objects, and some of these objects are identical. When objects are identical, swapping them among themselves does not create a new, visibly distinct arrangement. This reduces the total number of unique permutations.


Formula for Permutations with Repetition

Suppose we have a collection of $n$ objects in total. Let there be $k$ different types of objects, with $p_1$ identical objects of the first type, $p_2$ identical objects of the second type, ..., and $p_k$ identical objects of the $k$-th type. The total number of objects is $n = p_1 + p_2 + \dots + p_k$.

The number of distinct permutations (arrangements) of these $n$ objects is given by the formula:

Number of permutations $= \frac{n!}{p_1! \cdot p_2! \cdot \dots \cdot p_k!}$

... (1)

Here, $n$ is the total number of items, and $p_1, p_2, \dots$ are the counts of each group of identical items.


Intuition behind the Formula

Let's understand why we divide. Consider the word "TEE".

If the two 'E's were distinct (say, $E_1$ and $E_2$), we would have 3 distinct objects: T, $E_1$, $E_2$. The number of arrangements would be $3! = 6$.

$T E_1 E_2$, $T E_2 E_1$, $E_1 T E_2$, $E_2 T E_1$, $E_1 E_2 T$, $E_2 E_1 T$

Now, let's make the 'E's identical again ($E_1=E_2=E$). Look at the arrangements:

A diagram showing that for every distinct arrangement like TEE, there are 2! (2) arrangements if the E's were different (TE1E2, TE2E1). This illustrates the overcounting.

For every unique arrangement, we have counted it $2! = 2$ times because there are $2!$ ways to arrange the two 'E's. To correct for this overcounting, we divide the initial total ($3!$) by the factorial of the count of the repeated letter ($2!$).

Number of arrangements of "TEE" = $\frac{3!}{2!} = \frac{6}{2} = 3$.

This same logic applies no matter how many groups of repeated objects there are. We divide by the factorial of the count for each group to eliminate the overcounting from rearranging identical items.


Example 1. Find the number of different arrangements of the letters in the word 'ALLAHABAD'.

Answer:

Given:

The word 'ALLAHABAD'.

To Find:

The number of distinct arrangements of its letters.

Solution:

Step 1: Count the total number of letters.

The word 'ALLAHABAD' has 9 letters. So, $n=9$.

Step 2: Count the frequency of each repeated letter.

  • The letter 'A' appears 4 times. So, $p_1 = 4$.
  • The letter 'L' appears 2 times. So, $p_2 = 2$.
  • The other letters (H, B, D) appear only once.

Step 3: Apply the formula for permutations with repetition.

Number of arrangements $= \frac{n!}{p_1! \cdot p_2!}$

$ = \frac{9!}{4! \cdot 2!}$

Step 4: Calculate the value.

Expand the factorials and simplify:

$ = \frac{9 \times 8 \times 7 \times 6 \times 5 \times \cancel{4!}}{\cancel{4!} \times (2 \times 1)}$

$ = \frac{9 \times 8 \times 7 \times 6 \times 5}{2}$

$ = 9 \times 4 \times 7 \times 6 \times 5$

$ = 7560$

The final answer is 7560.


Circular Permutations

Circular permutations deal with arranging objects in a circle, where rotations of the same arrangement are considered identical. For example, if 4 people (A, B, C, D) are sitting at a round table, the arrangements ABCD, BCDA, CDAB, and DABC are all the same because the relative positions of the people are unchanged.

A circular table with four people A, B, C, D. Arrows show that rotating the table results in the same relative arrangement.

1. Distinct Objects in a Circle:

To count unique circular arrangements, we fix the position of one object. This breaks the rotational symmetry. The remaining $n-1$ objects can then be arranged in a line in $(n-1)!$ ways.

Number of circular permutations of $n$ distinct objects = $(n-1)!$

2. Circular Permutations like Necklaces or Garlands:

In some cases, like arranging beads on a necklace, flipping the arrangement over does not create a new design. In these cases, the clockwise and anti-clockwise arrangements are considered the same. To account for this, we divide by 2.

Number of necklace/garland arrangements = $\frac{(n-1)!}{2}$



Combinations

While permutations focus on the arrangement or order of objects, combinations deal with the selection or grouping of objects where the order of selection does not matter. In many real-world scenarios, we are interested in choosing a subset of items from a larger collection without regard to the order in which they are picked.


Definition of a Combination

A combination is a selection of a set of objects from a larger group of objects, where the order of selection is not important. A combination is essentially a subset of the original set.

For example, if you have a group of three friends, A, B, and C, and you need to choose two of them to form a team, the team consisting of {A, B} is the same as the team {B, A}. The order in which you picked them does not change the final team. The distinct combinations of choosing 2 friends from 3 are:

{A, B}, {A, C}, {B, C}

There are only 3 distinct combinations.


Distinction between Permutations and Combinations

The key difference is order. To decide whether to use permutations or combinations, ask yourself: "Does the order of the items matter?"

A table comparing Permutations and Combinations. Permutation column has keywords like 'Arrange', 'Order', 'Line up' and an example of a race (1st, 2nd, 3rd). Combination column has keywords like 'Select', 'Choose', 'Group' and an example of a committee.

The Relationship Between Permutations and Combinations

There is a direct and logical link between permutations and combinations. We can think of forming a permutation as a two-step process:

Step 1: Choose the items (Combination). First, select a group of $r$ objects from the total $n$ objects. The number of ways to do this is the number of combinations, denoted by $_nC_r$.

Step 2: Arrange the chosen items (Permutation of the smaller group). Once you have chosen your group of $r$ objects, you can arrange them in $r!$ different ways.

By the Fundamental Principle of Multiplication, the total number of ordered arrangements ($_nP_r$) is the product of the number of ways to complete Step 1 and Step 2.

Total Permutations = (Number of Combinations) $\times$ (Ways to arrange the chosen items)

$_nP_r = _nC_r \times r!$

... (1)

This shows that for every single combination (group of items), there are $r!$ corresponding permutations (arrangements of those items). Therefore, the number of permutations is always greater than or equal to the number of combinations (equality holds for $r=0$ or $r=1$).

This fundamental connection allows us to derive the formula for combinations from the formula for permutations.



Combinations when all Objects are Different

Having understood the distinction between permutations (order matters) and combinations (order does not matter), we now focus on deriving the formula for combinations. We consider the case where we are selecting objects from a set where all the objects are distinct.


Derivation of the Formula for $_nC_r$

In the previous section, we established the relationship between permutations and combinations:

$_nP_r = _nC_r \times r!$

This formula states that the number of ways to arrange $r$ items ($_nP_r$) is equal to the number of ways to first choose the group of $r$ items ($_nC_r$) and then arrange those $r$ items ($r!$).

To find the formula for $_nC_r$, we can simply rearrange this equation:

$_nC_r = \frac{_nP_r}{r!}$

... (1)

We already have the formula for permutations: $_nP_r = \frac{n!}{(n-r)!}$.

Now, we substitute this into equation (1):

$_nC_r = \frac{\frac{n!}{(n-r)!}}{r!}$

Simplifying this gives the standard formula for combinations:

$_nC_r = \frac{n!}{r!(n-r)!}$

... (2)

This formula calculates the number of ways to choose a subset of $r$ distinct objects from a larger set of $n$ distinct objects. It is valid for $0 \le r \le n$.

The notation $\binom{n}{r}$ is also commonly used for $_nC_r$ and is read as "n choose r".

$\binom{n}{r} = \frac{n!}{r!(n-r)!}$


Important Properties and Special Cases


Example 1. A bag contains 5 red balls and 7 blue balls. In how many ways can 3 red balls and 2 blue balls be selected?

Answer:

Given:

  • 5 red balls.
  • 7 blue balls.
  • We need to select 3 red balls AND 2 blue balls.

To Find:

The total number of ways to make this selection.

Solution:

This task involves two independent selections. We use the Multiplication Principle: Total Ways = (Ways to choose red balls) $\times$ (Ways to choose blue balls).

Step 1: Calculate the number of ways to select red balls.

We need to choose 3 red balls from 5. Since the order of selection doesn't matter, this is a combination.

Ways to select red balls = $_5C_3 = \frac{5!}{3!(5-3)!} = \frac{5!}{3!2!}$

$ = \frac{5 \times 4 \times \cancel{3!}}{\cancel{3!} \times (2 \times 1)} = \frac{20}{2} = 10$

Step 2: Calculate the number of ways to select blue balls.

We need to choose 2 blue balls from 7. This is also a combination.

Ways to select blue balls = $_7C_2 = \frac{7!}{2!(7-2)!} = \frac{7!}{2!5!}$

$ = \frac{7 \times 6 \times \cancel{5!}}{(2 \times 1) \times \cancel{5!}} = \frac{42}{2} = 21$

Step 3: Combine the results using the Multiplication Principle.

Total ways = $10 \times 21 = 210$

The final answer is 210.


Example 2. In how many ways can a cricket team of 11 players be chosen from 15 players?

Answer:

Given:

  • A group of 15 players. So, $n=15$.
  • We need to choose a team of 11 players. So, $r=11$.
  • The order in which players are selected for a team does not matter.

To Find:

The number of ways to choose the team.

Solution:

This is a combination problem of selecting 11 players from 15. We use the formula $_nC_r$.

Number of ways = $_{15}C_{11}$

Using the symmetry property, $_nC_r = _nC_{n-r}$, we can simplify the calculation:

$_15C_{11} = _{15}C_{15-11} = _{15}C_4$

Now we calculate $_{15}C_4$:

$_15C_4 = \frac{15!}{4!(15-4)!} = \frac{15!}{4!11!}$

$ = \frac{15 \times 14 \times 13 \times 12 \times \cancel{11!}}{(4 \times 3 \times 2 \times 1) \times \cancel{11!}}$

$ = \frac{15 \times 14 \times 13 \times 12}{24}$

Simplify by canceling factors. For example, $4 \times 3 \times 2 = 24$, and we can simplify $12/24$ and $14/2$.

$ = \frac{15 \times (2 \times 7) \times 13 \times (3 \times 4)}{4 \times 3 \times 2 \times 1} = 15 \times 7 \times 13$

$ = 105 \times 13 = 1365$

The final answer is 1365.



Important Results on Combinations

The formula for combinations, $_nC_r = \frac{n!}{r!(n-r)!}$, gives rise to several important identities and properties. These results are not just theoretical curiosities; they provide powerful shortcuts for solving complex counting problems and are fundamental to topics like the binomial theorem and probability.


Property 1: The Symmetry Property

This is one of the most frequently used properties of combinations. It states that the number of ways to choose $r$ objects from a set of $n$ is the same as the number of ways to choose $n-r$ objects from that set.

$_nC_r = _nC_{n-r}$

... (1)

Combinatorial Proof (Intuitive Explanation):

Imagine you have $n$ distinct items. The act of choosing $r$ items to take with you is logically equivalent to choosing $n-r$ items to leave behind. For every group of $r$ items you select, you are simultaneously defining a group of $n-r$ items that you are not selecting. Therefore, the number of ways to perform these two actions must be the same.

A group of 5 items. A circle is drawn around 2 of them (a selection). This automatically leaves 3 items outside the circle (an equivalent selection of items to leave behind).

Algebraic Proof:

We start with the right side of the equation, $_nC_{n-r}$, and show that it simplifies to the formula for $_nC_r$.

$_nC_{n-r} = \frac{n!}{(n-r)!(n-(n-r))!}$

Simplify the second term in the denominator: $n-(n-r) = n-n+r = r$.

$ = \frac{n!}{(n-r)!r!}$

By the commutative property of multiplication, this is the same as the formula for $_nC_r$.

$ = \frac{n!}{r!(n-r)!} = _nC_r$

Example 1. If $_nC_{10} = _nC_{12}$, find the value of $n$.

Answer:

Given:

The equation $_nC_{10} = _nC_{12}$.

Solution:

We know that if $_nC_x = _nC_y$, then there are two possibilities:

1. $x = y$

2. $x + y = n$ (from the symmetry property $_nC_x = _nC_{n-x}$)

In our case, $x=10$ and $y=12$. Clearly, $10 \neq 12$, so the first possibility is not true.

Therefore, we must use the second possibility:

$10 + 12 = n$

$n = 22$

The final answer is $n=22$.


Property 2: Pascal's Identity

This identity relates combinations of size $n$ to combinations of size $n+1$ and is the fundamental rule used to construct Pascal's Triangle.

$_nC_r + _nC_{r-1} = _{n+1}C_r$

... (2)

Combinatorial Proof (Intuitive Explanation):

Suppose we want to form a committee of $r$ people from a group of $n+1$ people. The total number of ways to do this is $_{n+1}C_r$.

Now, let's consider one specific person in the group, say, "Person A". The committee we form will either include Person A or it will not. These are two mutually exclusive cases.

By the Addition Principle, the total number of ways to form the committee is the sum of the ways in these two cases. Therefore, $_{n+1}C_r = _nC_r + _nC_{r-1}$.

Pascal's Triangle showing how two adjacent numbers in one row sum up to the number directly below them, illustrating Pascal's Identity.

Property 3: Sum of All Combinations

The sum of all combinations for a given $n$, from choosing 0 items up to choosing all $n$ items, is equal to $2^n$.

$_nC_0 + _nC_1 + _nC_2 + \dots + _nC_n = \sum\limits_{r=0}^{n} \ _nC_r = 2^n$

... (3)

Combinatorial Proof (Intuitive Explanation):

Consider a set with $n$ distinct elements. The number of subsets of this set can be found by considering each element one by one. For each of the $n$ elements, we have two choices: either we include it in the subset, or we do not.

By the Multiplication Principle, the total number of possible subsets is $2 \times 2 \times \dots \times 2$ ($n$ times), which is $2^n$.

Alternatively, we can count the subsets by their size. The number of subsets of size 0 is $_nC_0$. The number of subsets of size 1 is $_nC_1$, and so on, up to the number of subsets of size $n$, which is $_nC_n$. Summing these up gives the total number of subsets. Therefore, the sum must equal $2^n$.

Example 2. A person has 8 friends. In how many ways can they invite one or more of them to a party?

Answer:

Solution:

The person can invite 1 friend, OR 2 friends, OR 3 friends, ..., OR all 8 friends. Since these are mutually exclusive choices, we use the Addition Principle.

Number of ways = (Ways to invite 1) + (Ways to invite 2) + ... + (Ways to invite 8)

= $_8C_1 + _8C_2 + _8C_3 + _8C_4 + _8C_5 + _8C_6 + _8C_7 + _8C_8$

This calculation is long. We can use Property 3 to find a shortcut. We know that:

$_8C_0 + _8C_1 + _8C_2 + \dots + _8C_8 = 2^8$

The expression we want to calculate is almost this entire sum, except it is missing the $_8C_0$ term. So, we can rearrange the equation:

$_8C_1 + _8C_2 + \dots + _8C_8 = 2^8 - _8C_0$

We know that $2^8 = 256$ and $_8C_0 = 1$.

= $256 - 1 = 255$

The final answer is 255 ways.



Division into Groups

Beyond arranging or selecting objects, we sometimes need to solve problems that involve dividing a set of distinct objects into smaller subsets or groups. The method for counting the number of ways to do this depends crucially on whether the groups are considered distinguishable (e.g., labelled groups, groups assigned to different people) or indistinguishable (e.g., identical boxes, unnamed groups of the same size).


Case 1: Dividing $n$ Distinct Objects into $k$ Distinct Groups

Suppose we have $n$ distinct objects to be divided into $k$ groups that are distinguishable (e.g., a group for Person A, a group for Person B, etc.). Let the sizes of these groups be $n_1, n_2, \dots, n_k$, where $n_1 + n_2 + \dots + n_k = n$.

We can think of this as a sequence of selections:

  1. First, choose $n_1$ objects for the first group from the $n$ available objects. This can be done in $_nC_{n_1}$ ways.
  2. Next, from the remaining $n-n_1$ objects, choose $n_2$ objects for the second group. This can be done in $_{n-n_1}C_{n_2}$ ways.
  3. Continue this process until all groups are formed.

By the Multiplication Principle, the total number of ways is the product of these combinations. This simplifies to the multinomial coefficient formula:

Number of ways $= \frac{n!}{n_1! \cdot n_2! \cdot \dots \cdot n_k!}$

... (1)

A diagram showing 10 distinct items being divided into two distinct boxes labeled 'A' (6 items) and 'B' (4 items).

Case 2: Dividing $n$ Distinct Objects into Indistinguishable Groups

This case is more nuanced. It applies when the groups themselves have no labels or distinguishing features (e.g., dividing items into identical piles).

The key difference arises when some of the groups are of the same size. If we have $m$ indistinguishable groups of the same size $s$, the formula from Case 1 would overcount the arrangements because it treats the $m!$ ways of swapping these identical-sized groups as distinct. To correct this, we must divide by $m!$.

Rule of Thumb:

  1. Start with the formula from Case 1: $\frac{n!}{n_1! \cdot n_2! \cdot \dots \cdot n_k!}$.
  2. Look at the group sizes ($n_1, n_2, \dots$).
  3. If there are $m$ groups of the same size, divide the result by $m!$. If there are multiple sets of same-sized groups, divide by the factorial of the count for each set.
A diagram showing 4 distinct items being divided into two identical, unlabelled boxes, each containing 2 items.

The general formula for dividing $n$ objects into $m_1$ indistinguishable groups of size $s_1$, $m_2$ indistinguishable groups of size $s_2$, etc., is:

Number of ways $= \frac{n!}{(s_1!)^{m_1} \cdot (s_2!)^{m_2} \cdot \dots} \times \frac{1}{m_1! \cdot m_2! \cdot \dots}$

... (2)


Example 1. In how many ways can 10 different books be divided between two students, A and B, such that A gets 6 books and B gets 4 books?

Answer:

Given:

  • Total distinct books, $n=10$.
  • Group sizes: $n_1=6$ (for A), $n_2=4$ (for B).
  • The groups are distinguishable because they are assigned to specific students (A and B).

Solution:

This is a direct application of Case 1. We use the formula for dividing $n$ distinct objects into distinguishable groups.

Number of ways $= \frac{n!}{n_1! \cdot n_2!} = \frac{10!}{6! \cdot 4!}$

This is equivalent to calculating $_{10}C_6$ (or $_{10}C_4$).

$ = \frac{10 \times 9 \times 8 \times 7 \times \cancel{6!}}{\cancel{6!} \times (4 \times 3 \times 2 \times 1)}$

$ = \frac{10 \times 9 \times 8 \times 7}{24}$

$ = 10 \times 3 \times 7 = 210$

Alternative Logic: Simply choose 6 books for Student A out of 10. The remaining 4 automatically go to Student B. The number of ways is $_{10}C_6 = 210$.

The final answer is 210.


Example 2. In how many ways can 4 different articles be divided equally into 2 identical boxes?

Answer:

Given:

  • Total distinct articles, $n=4$.
  • The articles are divided equally into 2 groups, so each group has size 2.
  • The boxes (groups) are indistinguishable.
  • We have 2 groups of the same size (size 2).

Solution:

This is an application of Case 2.

Step 1: First, calculate the number of ways to divide into two *distinguishable* groups (e.g., Box 1 and Box 2).

Ways for distinct boxes = $\frac{4!}{2! \cdot 2!} = \frac{24}{2 \times 2} = 6$.

Step 2: Correct for indistinguishability.

The 6 ways calculated above are:

{{1,2},{3,4}}, {{3,4},{1,2}}

{{1,3},{2,4}}, {{2,4},{1,3}}

{{1,4},{2,3}}, {{2,3},{1,4}}

Since the boxes are identical, the pair of groups {{1,2}, {3,4}} is the same as {{3,4}, {1,2}}. We have counted each division twice. Because there are 2 groups of the same size, we must divide by $2!$.

Ways for identical boxes = $\frac{\text{Ways for distinct boxes}}{2!} = \frac{6}{2} = 3$.

Using the general formula directly (with $n=4$, $s_1=2$, $m_1=2$):

Number of ways = $\frac{4!}{(2!)^2 \cdot 2!} = \frac{24}{(2)^2 \cdot 2} = \frac{24}{8} = 3$.

The final answer is 3.



Distribution of Identical Objects into Distinct Groups

This section deals with a type of counting problem where the objects being distributed are identical, unlike the problems in standard permutations and combinations where objects are distinct. We are interested in finding the number of ways to distribute $n$ identical items into $r$ distinct containers.

This type of problem is equivalent to finding the number of non-negative integer solutions to a linear equation.


The Stars and Bars Method

Consider the problem of finding the number of non-negative integer solutions to an equation of the form:

$x_1 + x_2 + \dots + x_r = n$

... (1)

Here, $x_1, x_2, \dots, x_r$ represent the number of items in $r$ distinct bins, and $n$ is the total number of identical items to be distributed. The condition is that each bin can hold any number of items, including zero ($x_i \ge 0$).

We can visualize this problem using a technique called "Stars and Bars".

For example, to find the solutions for $x_1 + x_2 + x_3 = 5$ ($n=5, r=3$), we need $n=5$ stars and $r-1=2$ bars. An arrangement like:

$\star \star \star | \star | \star$

corresponds to the solution $x_1=3, x_2=1, x_3=1$. Another arrangement:

$| \star \star | \star \star \star$

corresponds to the solution $x_1=0, x_2=2, x_3=3$.

A visual representation of the Stars and Bars method, showing 5 stars and 2 bars arranged in a line.

Each unique arrangement of these stars and bars gives a unique solution. The problem now is to find how many ways we can arrange $n$ stars and $r-1$ bars.

We have a total of $n + r - 1$ positions to fill. We just need to choose which $r-1$ of these positions will contain bars (the rest will automatically be stars). This is a combination problem.

The number of ways to choose $r-1$ positions for the bars from a total of $n+r-1$ positions is:

Number of Solutions $= _{n+r-1}C_{r-1}$

... (2)

By the symmetry property of combinations, this is also equal to $_{n+r-1}C_n$.


Positive Integer Solutions (Each Group must have at least one object)

Sometimes, we require that each group must have at least one object. This corresponds to finding the number of positive integer solutions to the equation $x_1 + x_2 + \dots + x_r = n$, where $x_i \ge 1$.

To solve this, we can use a simple trick:

Step 1: First, place one object in each of the $r$ groups to satisfy the condition. This uses up $r$ of the $n$ objects.

Step 2: We are now left with $n - r$ identical objects to distribute among the $r$ groups, with no restrictions (i.e., each group can now receive zero or more additional objects).

This reduces the problem to the non-negative case we solved above. We just need to find the number of non-negative solutions for distributing $n' = n-r$ items into $r$ groups. Using the Stars and Bars formula with $n-r$ stars and $r-1$ bars:

Total positions = $(n-r) + (r-1) = n-1$.

Number of bars to place = $r-1$.

Number of Positive Solutions $= _{n-1}C_{r-1}$

... (3)

This formula is valid only if $n \ge r$. If $n < r$, it's impossible to place at least one object in each group, so the number of solutions is 0.


Example 1. Find the number of non-negative integer solutions to the equation $a + b + c + d = 8$.

Answer:

Given:

The equation $a + b + c + d = 8$, with the condition that $a, b, c, d$ are non-negative integers ($a \ge 0$, etc.).

Solution:

This is a problem of distributing $n=8$ identical items into $r=4$ distinct bins.

We use the formula for non-negative solutions: $_{n+r-1}C_{r-1}$.

  • $n = 8$ (the sum)
  • $r = 4$ (the number of variables)

Number of solutions = $_{8+4-1}C_{4-1} = _{11}C_3$

Now, we calculate the value of this combination:

$_{11}C_3 = \frac{11!}{3!(11-3)!} = \frac{11!}{3!8!}$

$ = \frac{11 \times 10 \times 9 \times \cancel{8!}}{(3 \times 2 \times 1) \times \cancel{8!}} = \frac{11 \times 10 \times 9}{6}$

$ = 11 \times 5 \times 3 = 165$

The final answer is 165.


Example 2. A baker sells pastries of 3 different types. In how many ways can a customer select 6 pastries?

Answer:

Given:

A customer selects 6 pastries in total. The pastries themselves can be thought of as 6 identical "slots" in the customer's selection.

There are 3 distinct types of pastries available to fill these slots.

Solution:

Let $x_1$, $x_2$, and $x_3$ be the number of pastries of Type 1, Type 2, and Type 3 that the customer selects, respectively. The total number of pastries is 6, so we have the equation:

$x_1 + x_2 + x_3 = 6$

Since the customer can choose to buy zero of any type, the condition is $x_1 \ge 0, x_2 \ge 0, x_3 \ge 0$.

This is a problem of finding the number of non-negative integer solutions.

  • $n = 6$ (number of identical items to choose)
  • $r = 3$ (number of distinct categories to choose from)

Using the formula $_{n+r-1}C_{r-1}$:

Number of selections = $_{6+3-1}C_{3-1} = _{8}C_2$

Calculate the value:

$_{8}C_2 = \frac{8!}{2!(8-2)!} = \frac{8!}{2!6!} = \frac{8 \times 7}{2 \times 1} = 28$

The final answer is 28.